home *** CD-ROM | disk | FTP | other *** search
/ Kit PC World De Ampliacion De Windows 95 / Kit PC World de ampliacion de Windows 95.iso / internet / sweeper / samples / docobj / resource.h < prev    next >
C/C++ Source or Header  |  1995-11-21  |  1KB  |  43 lines

  1. /*
  2.  * RESOURCE.H
  3.  * Document Objects Framer
  4.  *
  5.  * Definitions specifically pertaining to resources for the application.
  6.  *
  7.  * Copyright (c)1995 Microsoft Corporation, All Rights Reserved
  8.  * Kraig Brockschmidt, kraigb@microsoft.com
  9.  */
  10.  
  11.  
  12. #ifndef _RESOURCE_H_
  13. #define _RESOURCE_H_
  14.  
  15. //Number of menus.
  16. #define CMENUS                              2
  17.  
  18. //Resource identifiers.
  19. #define IDR_MENU                            1
  20. #define IDR_MENUHELP                        2
  21. #define IDR_ACCELERATORS                    1
  22. #define IDD_ABOUT                           1
  23.  
  24. //Number of items on IDR_MENUHELP
  25. #define CHELPITEMS                          1
  26.  
  27. //Menu command identifiers.
  28. #define IDM_FILEOPEN                        101
  29. #define IDM_FILECLOSE                       102
  30. #define IDM_FILEEXIT                        105
  31.  
  32. #define IDM_HELPABOUT                       200
  33. #define IDM_CUSTOMHELPMIN                   201
  34.  
  35.  
  36. //Enters context help in in-place mode
  37. #define IDM_ENTERCONTEXTHELP                300
  38. #define IDM_ESCAPECONTEXTHELP               301
  39.  
  40. #define CACCELERATORS                       2
  41.  
  42. #endif //_RESOURCE_H_
  43.